home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / doc / kermit.doc < prev    next >
Text File  |  1990-07-19  |  3KB  |  86 lines

  1. This is a slightly lobotomized kermit.  Because of bugs in
  2. cc and limitations in asld, I had to remove the help command, the
  3. script facility, and the automatic dial support.  ? and ESC still
  4. work, so there's still reasonable builtin help.  This is based on the
  5. normal Unix version of kermit, in a configuration very similar to v7.
  6. The only feature in v7 that I couldn't make work is the ability to see
  7. whether there are input characters waiting.  This means that you won't
  8. be able to ask for status while a file transfer is happening (though
  9. this isn't critical, because kermit prints a dot every so often and
  10. other special characters whenever there is an error or timeout).
  11.  
  12. Simple instructions on use:
  13.  
  14. Run kermit, and then type
  15.    set line /dev/tty1
  16.    set speed 2400
  17.    connect
  18. (It's more convenient if you put these commands in .kermrc in your
  19. home directory, so that they get done automatically whenever you
  20. run kermit.)  This will connect you to the modem or whatever on
  21. the serial port.  Now log into the other system.
  22.  
  23. When you want to transfer files, run kermit on the other system.
  24. To it, type
  25.    server
  26. This puts its kermit into a sort of "slave mode" where it expects
  27. commands from the kermit running on your Minix system.  Now come back
  28. to the command level on Minix kermit, by typing the escape character
  29. followed "c".  (kermit will tell you the current escape character when
  30. you do the connect command.)  At this point you can issue various
  31. commands.  Your kermit will coordinate things with kermit on the other
  32. machine so that you only have to type commands at one end.  Common
  33. commands are
  34.    get filename
  35.    put filename
  36.    remote dir
  37. Filenames can include wildcards.  By default, kermit works in a
  38. system-independent, text mode.  (In effect it assumes that the
  39. whole world is MS-DOS and converts end of line and file names
  40. accordingly.)  To send binary files, you will want to type
  41.    set file type bin
  42. on both ends before starting any transfers.  This disables
  43. CR LF to newline conversion.  If both of your systems are some
  44. flavor of Unix, you might as well put this in .kermrc on both
  45. ends and run in binary mode all the time.  Also, if both systems
  46. are Unix I recommend
  47.     set file name lit
  48. on both ends.  This causes it to keep file names unchanged,
  49. rather than mapping to legal MS-DOS names.
  50.  
  51. Here's the .kermrc I use on minix:
  52.  
  53.    set file type bin
  54.    set file name lit
  55.    set rec pack 1000
  56.    set esc 29
  57.    set prompt Minix Kermit>
  58.    connect
  59.  
  60. set rec pack 1000 says to request 1000-byte packets when receiving
  61. files.  (This will be ignored if the other end doesn't support
  62. long packets.)  This makes line utilization more efficient than
  63. the default 100-byte packets, though it isn't critical.  (You may
  64. not want to do this unless you have installed my changes to 
  65. increase buffer sizes, though on a 10MHz AT, 1000-byte packets
  66. work even without the patch as long as you are using a disk rather
  67. than a floppy.)
  68.  
  69. set esc 29 sets the escape character to ^].  No particular reason.
  70. I just like that characters.
  71.  
  72. I change the prompt since the other end is normally a Unix system.
  73. If I don't change one or the other, both ends will prompt
  74.    C Kermit>
  75. which is sort of confusing.
  76.  
  77. Here's the .kermrc I use on our Unix hosts:
  78.  
  79.    set rec packet 1000
  80.    set fil name lit
  81.    set fil type bin
  82.    server
  83.  
  84.  
  85. Charles Hedrick
  86.